.concat("/patch_dex.jar");
File file = new File(dexPath);
if (file.exists()) {
this.inject(dexPath);
} else {
Log.e("", "Dex patch ä¸?å˜åœ¨");
}
String dexPath = Environment.getExternalStorageDirectory()
.getAbsolutePath()
.concat("/patch_dex.jar");
HotPatch.inject(dexPath, this);
}
}